home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 1996
/
MacHack 1996.toast
/
Hacks
/
Hacks ’95
/
NetFractal™
/
Fractal 8 source
/
APane.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-06-24
|
274 b
|
26 lines
|
[
TEXT/MPCC
]
// APane.h
#pragma once
#include "LPane.h"
class APane :
public LPane
{
public:
static APane * CreateAPaneStream(
LStream *stream);
enum {
class_ID = 'APan'
};
APane(
LStream *inStream) :
LPane(inStream) { }
void DrawSelf();
};